home *** CD-ROM | disk | FTP | other *** search
/ C# & Game Programming - A…er's Guide (2nd Edition) / Buono 2nd Ed.iso / Chapter2 / 2.13 / 2.13.cs next >
Text File  |  2004-08-31  |  514b  |  19 lines

  1. /* This while loop ends when I say it ends, got it?  */
  2. using System;
  3.  
  4. namespace Chapter2 {
  5.     class Class1 {
  6.         static void Main() {
  7.             string Quit = "no";   
  8.                                                    
  9.             while (Quit != "yes") {
  10.                 Console.Write("\n Would you like to end this loop? ");    
  11.                 Quit = Console.ReadLine();
  12.             }     
  13.                      
  14.             Console.WriteLine ("Program complete!\n");
  15.         }
  16.     }
  17. }
  18.  
  19.